home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / netop_infopublic.nasl < prev    next >
Text File  |  2005-03-31  |  5KB  |  135 lines

  1. #
  2. # This NASL script has been produced as a collaboration between:
  3. #
  4. # - Martin O'Neal of Corsaire (http://www.corsaire.com)  
  5. # - Jakob Bohm of Danware (http://www.danware.dk)
  6. # DISCLAIMER
  7. # The information contained within this script is supplied "as-is" with 
  8. # no warranties or guarantees of fitness of use or otherwise. Neither Corsaire 
  9. # or Danware accept any responsibility for any damage caused by the use or misuse 
  10. # of this information.
  11.  
  12.  
  13.  
  14. ############## description ################
  15.  
  16. # declare description
  17. if(description)
  18. {
  19.     script_id(15767);
  20.     script_bugtraq_id(11710);
  21.     script_cve_id("CAN-2004-0950");
  22.     script_version ('$Revision: 1.2 $');
  23.     name["english"]='NetOp products information disclosure';
  24.     script_name(english:name["english"]);
  25.     desc["english"]= "
  26. This script simply displays the basic name and address information provided 
  27. by NetOp products for easy network browsing and reminds admins to turn off 
  28. that information if they don't want it to be visible.
  29.  
  30. The script also provides program-specific instructions for
  31. doing so depending on the actual product detected
  32.  
  33. Risk factor: Low";
  34.     script_description(english:desc["english"]);
  35.     summary["english"]=
  36.        'Detect if a NetOp product is configured to make the host name, IP address etc. public';
  37.     script_summary(english:summary["english"]);
  38.     script_category(ACT_GATHER_INFO);
  39.     script_cve_id('CAN-2004-0950');
  40.     script_copyright(english:
  41.         'This NASL script is Copyright 2004 Corsaire Limited and Danware Data A/S.');
  42.     family["english"]='General';
  43.     script_family(english:family["english"]);
  44.     script_dependencies('netop_detect_udp.nasl', 'netop_detect_tcp.nasl');
  45.  
  46.     exit(0);
  47. }
  48.  
  49.  
  50.  
  51. ############## declarations ################
  52.  
  53. # includes
  54. include('netop.inc');
  55.  
  56. function named_items(nam, typ)
  57. {
  58.     local_var v1;
  59.     v1 = netop_banner_items(typ:typ);
  60.     if (v1 != '' && nam != '')
  61.         v1 = nam + ': ' + v1;
  62.     if (v1 != '')
  63.         v1 = v1 + '\n';
  64.     return v1;
  65. }
  66.  
  67.  
  68.  
  69. ############## script ################
  70.  
  71. # Check knowledgabase and fork if multiple entries
  72. if (netop_each_found())
  73. {
  74.     local_var vals;
  75.     vals    = '';
  76.     
  77.     vals += named_items(nam:'host', typ:0);
  78.     vals += named_items(nam:'user', typ:9);
  79.     vals += named_items(nam:'', typ:8);
  80.     vals += named_items(nam:'', typ:17);
  81.     vals += named_items(nam:'', typ:4);
  82.     vals += named_items(nam:'', typ:1);
  83.     if (((ord(netop_kb_val[63]) & 0x01) == 1) || (vals != '') || eregmatch(pattern:"([^12]10\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}|172\.(1[6-9]|2[0-9]|3[0-1])\.[0-9]{1,3}\.[0-9]{1,3}|192\.168\.[0-9]{1,3}\.[0-9]{1,3})", string:named_items(nam:'address', typ:2)))  vals += named_items(nam:'address', typ:2);
  84.     
  85.     if (vals != '')
  86.     {
  87.         if (netop_prod_typ[0] == 'RGST')
  88.         {
  89.             vals =
  90.                '\nDanware ' + netop_prod_nam + ' information disclosure.\n\n' +
  91.                'The following information is made publicly visible for use' +
  92.                ' by NetOp host programs requesting help:\n\n' +
  93.                vals + '\n' +
  94.                'You can control access to this information by' +
  95.                ' removing help services from the program' +
  96.                ' options or by reducing the set of' +
  97.                ' preinitialized communication profiles\n\n' +
  98.                'Risk factor: Low\n';
  99.         }
  100.         else if (netop_prod_typ[0] != 'S')
  101.         {
  102.             vals =
  103.                '\nDanware ' + netop_prod_nam + ' information disclosure.\n\n' +
  104.                'The following information is made publicly visible for' +
  105.                ' easy network browsing from NetOp Guest:\n\n' +
  106.                vals + '\n' +
  107.                'Solution: If using a version of the software prior to 7.65 build 2004278, then it is necessary to upgrade to correct this issue. Simply use the built-in WebUpdate feature or download the update from http://www.netop.com.\n\nFor all other versions, you can turn this feature off by unchecking the "Public Host Name" check box in the program options (on the host name tab) and restarting the communication layer from the action menu or toolbar.\n\nAdditional information is available from http://www.corsaire.com/advisories/c040619-001.txt\n\nRisk factor: Low\n\n';
  108.         }
  109.         else
  110.         {
  111.             vals =
  112.                '\nDanware ' + netop_prod_nam + ' information disclosure.\n\n' +
  113.                'The following information is made publicly visible on the' +
  114.                ' classroom network so the Teacher and Student' +
  115.                ' can see each other in the class:\n\n' +
  116.                vals + '\n' +
  117.                'If this information is visible from outside' +
  118.                ' the schools network, you should reconfigure' +
  119.                ' your firewall to limit access to this port' +
  120.                ' to those students and teachers who' +
  121.                ' are participating from their homes etc.\n\n' +
  122.                'Risk factor: Low if inside the school,' +
  123.                ' High if open to the whole world\n';
  124.         }
  125.         
  126.         security_warning(proto: proto_nam, port: port, data: vals);
  127.     }
  128. }
  129.  
  130. exit(0);
  131.  
  132. ############## End of published info specific detection script ################
  133.